@charset 'utf-8';
/* ==========================================================================
Contain		:
	Reset CSS that resets browser's consisting CSS setting as default.
	CSSs that construct page layout like page background, header, footer, global navigation and so on.
	
Contents	:
	1: Reset Section
	2: Wrap Section
	3: Header Section
	4: Main Section
	5: Footer Section
	
========================================================================== */
/*
	Reset Section
-------------------------------------*/

/*
@font-face {
    font-family: 'Futura Medium BT Alt';
    src: url('../fonts/futura-medium-bt.woff2');
}

@font-face {
    font-family: 'HelveticaNeueLTStd-Bd';
    src: url('../fonts/helveticaneueltstd-bd.woff2');
}

@font-face {
    font-family: 'HelveticaNeueLTStd-BdEx';
    src: url('../fonts/helveticaneueltstd-bdex.woff2');
}

@font-face {
    font-family: 'HelveticaNeueLTStd-LdEx';
    src: url('../fonts/helveticaneueltstd-ltex.woff2');
}

@font-face {
    font-family: 'HelveticaNeueLTStd-TdEx';
    src: url('../fonts/helveticaneueltstd-thex.woff2');
}
    
    */


@font-face {
    font-family: 'Inter-Black';
    src: url('/areas/v1/assets/fonts/Inter-Black.ttf');
}

@font-face {
    font-family: 'Inter-Bold';
    src: url('/areas/v1/assets/fonts/Inter-Bold.ttf');
}

@font-face {
    font-family: 'Inter-ExtraBold';
    src: url('/areas/v1/assets/fonts/Inter-ExtraBold.ttf');
}

@font-face {
    font-family: 'Inter-ExtraLight';
    src: url('/areas/v1/assets/fonts/Inter-ExtraLight.ttf');
}

@font-face {
    font-family: 'Inter-Light';
    src: url('/areas/v1/assets/fonts/Inter-Light.ttf');
}

@font-face {
    font-family: 'Inter-Medium';
    src: url('/areas/v1/assets/fonts/Inter-Medium.ttf');
}

@font-face {
    font-family: 'Inter-Regular';
    src: url('/areas/v1/assets/fonts/Inter-Regular.ttf');
}

@font-face {
    font-family: 'Inter-SemiBold';
    src: url('/areas/v1/assets/fonts/Inter-SemiBold.ttf');
}

@font-face {
    font-family: 'Inter-Thin';
    src: url('/areas/v1/assets/fonts/Inter-Thin.ttf');
}

@font-face {
    font-family: "Roboto";
    src: url("../fonts/Roboto.eot");
    src: url("../fonts/Roboto.eot") format("embedded-opentype"), url("../fonts/Roboto.woff2") format("woff2"), url("../fonts/Roboto.woff") format("woff"), url("../fonts/Roboto.ttf") format("truetype"), url("../fonts/Roboto.svg") format("svg");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "RobotoLight";
    src: url("../fonts/Roboto-Light.eot");
    src: url("../fonts/Roboto-Light.eot") format("embedded-opentype"), url("../fonts/Roboto-Light.woff") format("woff"), url("../fonts/Roboto-Light.ttf") format("truetype"), url("../fonts/Roboto-Light.svg") format("svg");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "RobotoMedium";
    src: url("../fonts/Roboto-Medium.eot");
    src: url("../fonts/Roboto-Medium.eot") format("embedded-opentype"), url("../fonts/Roboto-Medium.woff") format("woff"), url("../fonts/Roboto-Medium.ttf") format("truetype"), url("../fonts/Roboto-Medium.svg") format("svg");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "RobotoBold";
    src: url("../fonts/Roboto-Bold.eot");
    src: url("../fonts/Roboto-Bold.eot") format("embedded-opentype"), url("../fonts/Roboto-Bold.woff") format("woff"), url("../fonts/Roboto-Bold.ttf") format("truetype"), url("../fonts/Roboto-Bold.svg") format("svg");
    font-weight: normal;
    font-style: normal;
}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    font: inherit;
    font-size: 100%;
    font-family: 'Inter-Medium';
    margin: 0;
    padding: 0;
    vertical-align: baseline;
    border: 0;
    -webkit-text-size-adjust: auto;
    -moz-text-size-adjust: auto;
    -ms-text-size-adjust: auto;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1.5;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
}
table {
	border-spacing: 0;
	border-collapse: collapse;
}
a {
	vertical-align: baseline;
	text-decoration: none;
	color: #000;
}
h1 {
	font-size: 24px;
	font-weight: bold;
}
h2 {
	font-size: 18px;
	font-weight: bold;
}
h3 {
	font-size: 16px;
	font-weight: bold;
}
h4 {
	font-size: 14px;
	margin: 5px 0;
}
/* clearfix ------- */
.clearfix:before,
.clearfix:after {
  content:"";
  display:table;
}
.clearfix:after {
  clear:both;
}
.clearfix {
  zoom:1;
}